home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 6 / hanson.zip / ERR.C next >
Text File  |  1985-12-31  |  256b  |  11 lines

  1. /* err.c by Michael Hanson */
  2. /* you may use this, but not for profit, and give me credit */ 
  3. /* error printer for c */
  4.  
  5. error(str,erc)
  6. char *str;
  7. int erc;
  8. {
  9.     fprintf(STDERR,"%s \n",str);
  10.     exit(erc);
  11. }